home *** CD-ROM | disk | FTP | other *** search
/ My Neighborhood / My Neighborhood.iso / mac / MacFiles / Shared.Dir / 00949.ls < prev    next >
Encoding:
Text File  |  1997-11-20  |  597 b   |  27 lines

  1. on mouseDown
  2.   puppetSound("floop.s")
  3.   updateStage()
  4.   autoHilite()
  5.   wait(5)
  6.   puppetSound(0)
  7. end
  8.  
  9. on action
  10.   set the timeoutLapsed to 0
  11.   set temp3 to the name of cast the castNum of sprite 3
  12.   set temp5 to the name of cast the castNum of sprite 5
  13.   set temp7 to the name of cast the castNum of sprite 7
  14.   if (temp3 = temp5) and (temp5 = temp7) then
  15.     set the timeoutLapsed to 0
  16.     set the timeoutScript to "dialogBox"
  17.     set the timeoutLength to 600
  18.     dialogBox()
  19.   else
  20.     repeat while soundBusy(1)
  21.     end repeat
  22.     wait(20)
  23.     puppetSound("pluk.s")
  24.     updateStage()
  25.   end if
  26. end
  27.